home *** CD-ROM | disk | FTP | other *** search
/ Let's Discover Louisiana / Let's Discover Louisiana.iso / pc / FILES / DIS.dxr / 00381_Pic3Roll.ls < prev    next >
Encoding:
Text File  |  2001-01-11  |  664 b   |  37 lines

  1. global nextCategory, Pic3
  2.  
  3. on mouseEnter me
  4.   if Pic3 <> 1 then
  5.     sprite(40).memberNum = 377
  6.   end if
  7. end
  8.  
  9. on mouseLeave me
  10.   if Pic3 <> 1 then
  11.     sprite(40).memberNum = 378
  12.   end if
  13. end
  14.  
  15. on mouseUp me
  16.   if the frame < 2125 then
  17.     if Pic3 = 1 then
  18.       go(the frame)
  19.     else
  20.       nextCategory = "Pic3"
  21.       if the frameLabel = "First" then
  22.         go(marker(nextCategory))
  23.       else
  24.         if the frameLabel = "Ready" then
  25.           go(marker(nextCategory))
  26.         else
  27.           if marker(0) = "Jump" then
  28.             go(marker("Jump"))
  29.           else
  30.             go(the frame + 1)
  31.           end if
  32.         end if
  33.       end if
  34.     end if
  35.   end if
  36. end
  37.